/* consultancy.css - Bespoke Architecture */

.unique-consultancy {
    background-color: var(--primary-dark, rgb(13, 13, 36));
    color: white;
}

.consult-columns {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.consult-col {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 5px solid rgba(155, 89, 182, 0.3);
    padding: 40px;
    transition: transform 0.4s;
}

.consult-col:hover {
    transform: translateY(-10px);
}

.consult-col.highlight {
    background: rgba(155, 89, 182, 0.05);
    border-top: 5px solid #9b59b6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: scale(1.05);
    z-index: 2;
}

@media screen and (max-width: 900px) {
    .consult-col.highlight {
        transform: scale(1);
    }
}

.c-header h2 {
    font-size: 4rem;
    color: rgba(155, 89, 182, 0.2);
    margin-bottom: -20px;
}

.highlight .c-header h2 {
    color: rgba(155, 89, 182, 0.5);
}

.c-header h3 {
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.c-body p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}
